'Declaration
<ConditionalAttribute("DEBUG")> Public Overloads Shared Sub LogDebug( _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'Usage
Dim exception As Exception Dim message As String Dim args() As Object Utils.LogDebug(exception, message, args)
[Conditional("DEBUG")] public static void LogDebug( Exception exception, string message, params object[] args )
[Conditional("DEBUG")] public: static void LogDebug( Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- exception
- The exception to log.
- message
- Format string of the log message in message template format. Example:
"User {User} logged in from {Address}"
- args
- An object array that contains zero or more objects to format.